home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo Here is a demonstration of FFG's ability to execute commands for each
- echo found file using the '/e' option. In this demo FFG will search for hidden
- echo files and for each one found will run the DOS ATTRIB command to show the
- echo file's attributes. Of course, each found file should show the hidden
- echo attribute set.
- echo.
- call presskey
- :: Note that double %%'s are required because the DOS batch file interpreter
- :: removes one of them.
- echo on
- ffg *:* /ah /eATTRIB%%_%%n
-